home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Internet Tools 1993 July / Internet Tools.iso / RockRidge / mail / metamail / contrib / amiga / AmigaSrc / iff2ulaw.lha / iff2ulaw / compiler.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-04-29  |  1.0 KB  |  34 lines

  1. #ifndef COMPILER_H
  2. #define COMPILER_H
  3. /*** compiler.h *********************************************************/
  4. /*  Steve Shaw                                                  1/29/86 */
  5. /*  Portability file to handle compiler idiosyncrasies.                 */
  6. /*  Version: Lattice 3.03 cross-compiler for the Amiga from the IBM PC. */
  7. /*                                                                      */
  8. /* This software is in the public domain.                               */
  9. /*                                                                      */
  10. /************************************************************************/
  11.  
  12. #ifndef EXEC_TYPES_H
  13. #include "types.h"
  14. #endif
  15.  
  16.  
  17. /* NOTE  --  NOTE  --  NOTE  --  NOTE  --  NOTE
  18.  * Some C compilers can handle Function Declarations with Argument Types
  19.  * (FDwAT) like this:
  20.  *     extern LONG Seek(BPTR, LONG, LONG)
  21.  * while others choke unless you just say
  22.  *     extern LONG Seek()
  23.  *
  24.  * Comment out the #define FDwAT if you have a compiler that chokes. */
  25.  
  26.  
  27.  
  28. #define FDwAT
  29.  
  30. #define LOCAL static
  31.  
  32. #endif COMPILER_H
  33.  
  34.